Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / ListBase<T> Class / Add Method
The object to add to the ListBase<T>.


In This Topic
    Add Method (ListBase<T>)
    In This Topic
    Adds an object to the end of the ListBase<T>.
    Syntax
    'Declaration
     
    
    Public Sub Add( _
       ByVal item As T _
    ) 
    'Usage
     
    
    Dim instance As ListBase(Of T)
    Dim item As T
     
    instance.Add(item)
    public void Add( 
       T item
    )

    Parameters

    item
    The object to add to the ListBase<T>.
    See Also